home *** CD-ROM | disk | FTP | other *** search
/ Dominator 4 / Dominator 4.iso / golf / lib / main.prj < prev    next >
Encoding:
INI File  |  1995-01-27  |  658 b   |  40 lines

  1. [SnMake]
  2.  
  3. execdep = *.obj
  4. maindep = main.prj main.lnk *.h
  5. asmdep = main.prj main.lnk debug.h
  6.  
  7. !ifdef(debugstr)
  8. cflags = /5r /mf /oneatx /zp1 /hw /d2
  9. aflags = /c /Zd
  10. !else
  11. cflags = /5r /mf /oneatx /zp1 /hw
  12. aflags = /c
  13. !endif
  14.  
  15. ## ***************************************************************************
  16.  
  17. main.obj;    main.c $(maindep)
  18.     wcc386    main.c $(cflags)
  19.  
  20.  
  21. ## ***************************************************************************
  22.  
  23.     del     main.exe
  24.  
  25. main.exe;    $(execdep)
  26. !ifdef(debugstr)
  27.     wlink    DEBUG ALL @main.lnk
  28. !else
  29.     wlink    @main.lnk
  30. !endif
  31.  
  32.  
  33. [Debug]
  34.     wd /trap=rsi /swap /lines=50 main
  35.  
  36.  
  37. swapdir=c:temp\
  38.  
  39.  
  40.